home *** CD-ROM | disk | FTP | other *** search
/ AppleScript - The Beta Release / AppleScript - The Beta Release.iso / Development Tools / Sample Applications / MenuScripter 1.0d4.1 / MenuScripter Source / makefile next >
Encoding:
Makefile  |  1992-11-24  |  1.8 KB  |  77 lines  |  [TEXT/MPS ]

  1. #   File:       makefile
  2. #   Target:     MenuScripter
  3. #   Sources:    MSGlobals.c
  4. #               MSGlobals.h
  5. #               MSUtils.h
  6. #               MSUtils.c
  7. #               MSAEUtils.h
  8. #               MSAEUtils.c
  9. #               MSEditions.h
  10. #               MSEditions.c
  11. #               MSWindow.c
  12. #               MSWindow.h
  13. #                MSFile.h
  14. #                MSFile.c
  15. #               MSAppleEvents.c
  16. #               MSAppleEvents.h
  17. #               MSMain.c
  18.  
  19.  
  20. OBJECTS = ∂
  21.         MSGlobals.c.o ∂
  22.         MSUtils.c.o ∂
  23.         MSAEUtils.c.o ∂
  24.         MSEditions.c.o ∂
  25.         MSWindow.c.o ∂
  26.         MSFile.c.o ∂
  27.         MSAppleEvents.c.o ∂
  28.         MSScript.c.o ∂
  29.         MSMain.c.o ∂
  30.  
  31.  
  32. MSGlobals.c.o ƒ MSGlobals.h MSGlobals.c
  33.      c  MSGlobals.c -sym on 
  34.      
  35. MSUtils.c.o ƒ MSUtils.h MSUtils.c MSGlobals.h
  36.      c  MSUtils.c -sym on
  37.      
  38. MSAEUtils.c.o ƒ MSAEUtils.h MSAEUtils.c MSUtils.h
  39.      c  MSAEUtils.c -sym on
  40.      
  41. MSEditions.c.o ƒ MSEditions.h MSEditions.c MSGlobals.h MSUtils.h
  42.      c  MSEditions.c -sym on 
  43.      
  44. MSWindow.c.o ƒ MSWindow.c MSWindow.h MSGlobals.h MSUtils.h
  45.      c  MSWindow.c -sym on 
  46.  
  47. MSFile.c.o ƒ MSFile.h MSFile.c MSGlobals.h MSUtils.h
  48.      c  MSFile.c -sym on
  49.      
  50. MSAppleEvents.c.o ƒ MSAppleEvents.h MSAppleEvents.c MSGlobals.h MSUtils.h MSAEUtils.h MSWindow.h MSScript.h
  51.      c  MSAppleEvents.c -sym on 
  52.      
  53. MSScript.c.o ƒ MSGlobals.h MSScript.c MSAEUtils.h MSScript.h MSWindow.h
  54.      c  MSScript.c -sym on 
  55.      
  56. MSMain.c.o ƒ MSMain.c MSAppleEvents.h MSGlobals.h MSAEUtils.h  MSUtils.h MSWindow.h MSScript.h
  57.      c  MSMain.c -sym on 
  58.         
  59. MenuScripter ƒƒ {OBJECTS}
  60.     Link -sym full -w -t APPL -c 'SVEd' ∂
  61.         {OBJECTS} ∂
  62.         "{Libraries}"Runtime.o ∂
  63.         "{Libraries}"Interface.o ∂
  64.         "{Libraries}"ToolLibs.o ∂
  65.         "{CLibraries}"StdCLib.o ∂
  66.         "{PLibraries}"PasLib.o ∂
  67.         "{Libraries}"AEObjectSupportLib.o ∂
  68.         -o MenuScripter
  69.         
  70. MenuScripter ƒƒ MenuScripter.r MSPict.r
  71.         Rez -rd -o {Targ} MenuScripter.r -append
  72.  
  73.         
  74.         
  75.     
  76.  
  77.